←Select platform

WriteMarkers(string,int,IEnumerable<RasterMarkerMetadata>) Method

Summary
Writes one or more markers to an existing file.
Syntax
C#
Objective-C
C++/CLI
Python
public void WriteMarkers( 
   string fileName, 
   int pageNumber, 
   IEnumerable<RasterMarkerMetadata> markers 
) 
- (BOOL)writeMarkers:(nullable NSArray<LTRasterMarkerMetadata *> *)markers  
              toFile:(NSString *)file  
          pageNumber:(NSInteger)pageNumber  
               error:(NSError **)error 
public: 
void WriteMarkers(  
   String^ fileName, 
   int pageNumber, 
   IEnumerable<RasterMarkerMetadata^>^ markers 
)  
def WriteMarkers(self,fileName,pageNumber,markers): 

Parameters

fileName
A String that contains the file name.

pageNumber
1-based index of the page at which to write the marker.

markers
A collection of RasterMarkerMetadata objects that contains the marker data.

Remarks

For Exif files, this metadata collection will contain all the Exif and GPS comments, stored in APP1. It will also contain the audio information stored in APP2.

Only JPEG and Exif JPEG files support writing markers.

Example
C#
Java
using Leadtools; 
using Leadtools.Codecs; 
using Leadtools.ImageProcessing; 
using Leadtools.ImageProcessing.Color; 
using Leadtools.Svg; 
 
 
void MarkersExample(string srcFileName, string destFileName) 
{ 
   RasterCodecs codecs = new RasterCodecs(); 
 
   // Load the source image with markers 
   Debug.WriteLine("Loading the source image with all markers"); 
   codecs.Options.Load.Markers = true; 
   RasterImage srcImage = codecs.Load(srcFileName); 
 
   // Show the markers loaded 
   Debug.WriteLine("These markers were loaded:"); 
   foreach (RasterMarkerMetadata marker in srcImage.Markers) 
   { 
      byte[] data = marker.GetData(); 
      codecs.WriteMarker(srcFileName, 1, marker); 
      // codecs.WriteMarker(stream, 1, marker); 
      codecs.WriteTransformMarker(marker.Id, data, 0, 1); 
      Debug.WriteLine(" {0}, DataSize:{1}", marker.Id, data.Length); 
   } 
 
   // Create the destination image 
   RasterImage destImage = new RasterImage( 
      RasterMemoryFlags.Conventional, 
      320, 
      20, 
      24, 
      RasterByteOrder.Bgr, 
      RasterViewPerspective.TopLeft, 
      null, 
      IntPtr.Zero, 
      0); 
 
   // Save this as JPEG 
   codecs.Save(destImage, destFileName, RasterImageFormat.Jpeg, 24); 
 
   // Write the markers from the source image to this destination image 
   Debug.WriteLine("Writing the markers to the destination file"); 
   codecs.WriteMarkers(destFileName, 1, srcImage.Markers); 
 
   srcImage.Dispose(); 
   destImage.Dispose(); 
 
   // Re-load the destination image with markers 
   Debug.WriteLine("Loading the destination image with all markers"); 
   codecs.Options.Load.Markers = true; 
   destImage = codecs.Load(destFileName); 
 
   // Show the markers loaded 
   Debug.WriteLine("These markers were loaded:"); 
   foreach (RasterMarkerMetadata marker in destImage.Markers) 
   { 
      byte[] data = marker.GetData(); 
      Debug.WriteLine(" {0}, DataSize:{1}", marker.Id, data.Length); 
   } 
 
   destImage.Dispose(); 
 
   // Clean up 
   codecs.Dispose(); 
} 
 
import java.io.*; 
import java.net.*; 
import java.nio.file.Paths; 
import java.util.*; 
import java.time.Instant; 
import java.time.Duration; 
 
import org.junit.*; 
import org.junit.runner.JUnitCore; 
import org.junit.runner.Result; 
import org.junit.runner.notification.Failure; 
import static org.junit.Assert.*; 
 
import leadtools.*; 
import leadtools.codecs.*; 
import leadtools.codecs.RasterCodecs.FeedCallbackThunk; 
import leadtools.drawing.internal.*; 
import leadtools.imageprocessing.*; 
import leadtools.imageprocessing.color.ChangeIntensityCommand; 
import leadtools.svg.*; 
 
 
public void markersExample() throws IOException { 
   final String LEAD_VARS_IMAGES_DIR = "C:\\LEADTOOLS23\\Resources\\Images"; 
   String srcFileName = combine(LEAD_VARS_IMAGES_DIR, "ocr1-4.tif"); 
   String destFileName = combine(LEAD_VARS_IMAGES_DIR, "markersExampleOutput.tif"); 
   RasterCodecs codecs = new RasterCodecs(); 
 
   // Load the source image with markers 
   System.out.println("Loading the source image with all markers"); 
   codecs.getOptions().getLoad().setMarkers(true); 
   RasterImage srcImage = codecs.load(srcFileName); 
 
   // Show the markers loaded 
   System.out.println("These markers were loaded:"); 
   for (RasterMarkerMetadata marker : srcImage.getMarkers()) { 
      byte[] data = marker.getData(); 
      ILeadStream srcFileStream = LeadStreamFactory.create(srcFileName); 
      codecs.writeMarker(srcFileStream, 1, marker); 
      // codecs.WriteMarker(stream, 1, marker); 
      codecs.writeTransformMarker(marker.getId(), data, 0, 1); 
      System.out.printf(" %s, DataSize:%s%n", marker.getId(), data.length); 
      srcFileStream.close(); 
   } 
 
   // Create the destination image 
   byte[] byteZero = new byte[0]; 
   RasterImage destImage = new RasterImage(RasterMemoryFlags.CONVENTIONAL.getValue(), 320, 20, 24, 
         RasterByteOrder.BGR, RasterViewPerspective.TOP_LEFT, 
         null, byteZero, 0); 
 
   // Save this as JPEG 
   codecs.save(destImage, destFileName, RasterImageFormat.JPEG, 24); 
 
   // Write the markers from the source image to this destination image 
   System.out.println("Writing the markers to the destination file"); 
   ILeadStream destFileStream = LeadStreamFactory.create(destFileName); 
   codecs.writeMarkers(destFileStream, 1, srcImage.getMarkers()); 
 
   srcImage.dispose(); 
   destImage.dispose(); 
 
   // Re-load the destination image with markers 
   System.out.println("Loading the destination image with all markers"); 
   codecs.getOptions().getLoad().setMarkers(true); 
   destImage = codecs.load(destFileName); 
 
   // Show the markers loaded 
   System.out.println("These markers were loaded:"); 
   for (RasterMarkerMetadata marker : destImage.getMarkers()) { 
      byte[] data = marker.getData(); 
      System.out.printf(" %s, DataSize:%s%n", marker.getId(), data.length); 
   } 
 
   destImage.dispose(); 
 
   // Clean up 
   destFileStream.close(); 
   codecs.dispose(); 
} 
Requirements

Target Platforms

Help Version 23.0.2024.2.29
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2024 LEAD Technologies, Inc. All Rights Reserved.

Leadtools.Codecs Assembly

Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.